home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Commands / PTextWrapPoly.h < prev    next >
C/C++ Source or Header  |  1996-07-12  |  812b  |  32 lines

  1. /*
  2.  *--- PTextWrapPoly.h -----------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description: This class is a little different than most other commands.
  7.  * The class client must create a complete PRequestBuf object and pass it
  8.  * into the constructor.  Refer to the SDK Guide for information about the
  9.  * format of the TextWrapPoly command parameters.
  10.  *-------------------------------------------------------------------------
  11.  */
  12. #ifndef __PTextWrapPoly__
  13. #define __PTextWrapPoly__
  14.  
  15. class PRequestBuf;
  16.  
  17. class PTextWrapPoly
  18. {
  19.  
  20. public:
  21.  
  22.     PTextWrapPoly(PRequestBuf& request);
  23.  
  24. private:
  25.  
  26.     PTextWrapPoly();
  27. };
  28.  
  29. #endif
  30.  
  31. // end of PTextWrapPoly.h
  32.